home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / share / pyshared / checkbox / lib / path.py < prev    next >
Encoding:
Python Source  |  2009-04-27  |  1.8 KB  |  67 lines

  1. #
  2. # This file is part of Checkbox.
  3. #
  4. # Copyright 2008 Canonical Ltd.
  5. #
  6. # Checkbox is free software: you can redistribute it and/or modify
  7. # it under the terms of the GNU General Public License as published by
  8. # the Free Software Foundation, either version 3 of the License, or
  9. # (at your option) any later version.
  10. #
  11. # Checkbox is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. # GNU General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU General Public License
  17. # along with Checkbox.  If not, see <http://www.gnu.org/licenses/>.
  18. #
  19. import posixpath
  20.  
  21. from glob import glob
  22.  
  23.  
  24. def path_split(path):
  25.     return path.split(posixpath.sep)
  26.  
  27. def path_common(l1, l2, common=[]):
  28.     if len(l1) < 1:
  29.         return (common, l1, l2)
  30.  
  31.     if len(l2) < 1:
  32.         return (common, l1, l2)
  33.  
  34.     if l1[0] != l2[0]:
  35.         return (common, l1, l2)
  36.  
  37.     return path_common(l1[1:], l2[1:], common + [l1[0]])
  38.  
  39. def path_relative(p1, p2):
  40.     (common, l1, l2) = path_common(path_split(p1), path_split(p2))
  41.     p = []
  42.     if len(l1) > 0:
  43.         p = ["..%s" % posixpath.sep * len(l1)]
  44.  
  45.     p = p + l2
  46.     return posixpath.join( *p )
  47.  
  48. def path_expand(path):
  49.     path = posixpath.expanduser(path)
  50.     return glob(path)
  51.  
  52. def path_expand_recursive(path):
  53.     paths = []
  54.     for path in path_expand(path):
  55.         if posixpath.isdir(path):
  56.             def walk_func(arg, directory, names):
  57.                 for name in names:
  58.                     path = posixpath.join(directory, name)
  59.                     if not posixpath.isdir(path):
  60.                         arg.append(path)
  61.  
  62.             posixpath.walk(path, walk_func, paths)
  63.         else:
  64.             paths.append(path)
  65.  
  66.     return paths
  67.